type encoding/binary.decoder

14 uses

	encoding/binary (current package)
		binary.go#L267: 	d := &decoder{order: order, buf: make([]byte, size)}
		binary.go#L307: 	d := &decoder{order: order, buf: buf[:size]}
		binary.go#L749: type decoder coder
		binary.go#L752: func (d *decoder) bool() bool {
		binary.go#L767: func (d *decoder) uint8() uint8 {
		binary.go#L778: func (d *decoder) uint16() uint16 {
		binary.go#L789: func (d *decoder) uint32() uint32 {
		binary.go#L800: func (d *decoder) uint64() uint64 {
		binary.go#L811: func (d *decoder) int8() int8 { return int8(d.uint8()) }
		binary.go#L815: func (d *decoder) int16() int16 { return int16(d.uint16()) }
		binary.go#L819: func (d *decoder) int32() int32 { return int32(d.uint32()) }
		binary.go#L823: func (d *decoder) int64() int64 { return int64(d.uint64()) }
		binary.go#L827: func (d *decoder) value(v reflect.Value) {
		binary.go#L959: func (d *decoder) skip(v reflect.Value) {